pointer$61998$ - translation to ελληνικό
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

pointer$61998$ - translation to ελληνικό

TYPE WHICH STORES MEMORY ADDRESSES IN A COMPUTER PROGRAM
Pointer arithmetic; Void pointer; Software pointer; C++ Pointers; Pointer structure; Pointer error; Data pointer; Pointer (programming); Pointer (computer science); Pointer (computing); Raw pointer; Pointer type; Back-pointer; →*; Pointer-to-member
  • data primitive]] for both pointers and non-pointers; this need should not be the case.

pointer      
n. δείκτης, χάρακας, λαγωνικό, ανιχνευτικός σκύλος
dynamic relocation         
IN COMPUTING, THE PROCESS OF ASSIGNING LOAD ADDRESSES FOR POSITION-DEPENDENT CODE AND DATA
Relocation table; Relocatable code; Relocating loader; Relocation (computer science); Static relocation; Simple static relocation; Page boundary relocation; Compile-time relocation; Dynamic relocation; Dynamic relocation (computing); Run-time relocation; Runtime relocation; Virtual relocation; Virtual relocation (computing); Load-time relocation; Loadtime relocation; Program relocation; Code relocation; Relocatable program; Segment relocation; Segment relocation (computing); Offset relocation; Offset relocation (computing); Intra-segment offset relocation; Intrasegment offset relocation; Page-boundary relocation; 256-byte page boundary relocation; 256-byte page-boundary relocation; Relocation information; Runtime binary relocation; Run-time binary relocation; 256 byte page boundary relocation; Execution time relocation; Execution-time relocation; 16 byte boundary relocation; 16-byte boundary relocation; Paragraph boundary relocation; Paragraph-boundary relocation; Load-Time Locatable Code; Load Time Locatable Code; Load-time locatable code; LTL code; Load-time locatable; Locatable Code; Locatable code; Load-time locatable program; Load-Time Locatable Enumerated Data Record; LTL Enumerated Data Record; Load-Time Locatable Iterated Data Record; LTL Iterated Data Record; Re-locatable code; Load-time locatable enumerated data record; Load-time locatable iterated data record; LTL iterated data record; LTL enumerated data record; Relocatable enumerated data record; Relocatable Enumerated Data Record; Relocatable Iterated Data Record; Relocatable iterated data record; Relocation on the fly; Relocation bits; Relocation bit; Relocated program; Relocated code; Relocating linker; Relocation and Linkage; Relocation and linkage; R&L (computing); Relocation map; Relocation bitmap; Relocation map (computing); Line relocation; Line relocation (computing); Relocation list; Relocation list (computing); Relocation of address constant; Relocation of address expression; Interleaving relocation bits; Relocatability attribute; Instruction relocation; Relocation technique; Relocatable text reference; Relocation of bitmaps; Link-time relocation; Relocatable constant; Relocatable instruction; Relocatable object file; Relocatable symbol; Relocation term; Relocating bit; Relocating instruction; Intra-segment offset-relocatible; Intra-segment offset-relocation; Intra-segment offset relocatible; Offset-relocation; Offset relocatible; Offset-relocatible; Offset-relocatable; Offset relocatable; Intra-segment offset-relocatable; Intra-segment offset relocatable; Eager modification of pointers; Eager pointer modification; Relocation program (computing); Relocator (computing); Paragraph boundary relocatable; Paragraph boundary relocating; Paragraph-boundary relocating; Paragraph-boundary relocatable; Paragraph boundary relocated; Paragraph-boundary relocated; Page boundary relocating; Page boundary relocatable; Page boundary relocated; Page-boundary relocating; Page-boundary relocatable; Page-boundary relocated; Offset relocating; Offset relocated; Offset-relocating; Offset-relocated; Segment relocating; Segment relocatable; Segment relocated; Segment-relocating; Segment-relocatable; Segment-relocated; Segment-relocation
δυναμική μετατόπιση

Ορισμός

pointer
(pointers)
1.
A pointer is a piece of advice or information which helps you to understand a situation or to find a way of making progress.
I hope at least my daughter was able to offer you some useful pointers...
N-COUNT: with supp
2.
A pointer to something suggests that it exists or gives an idea of what it is like. (mainly BRIT)
Sunday's elections should be a pointer to the public mood.
N-COUNT: N to/towards n
3.
A pointer is a long stick that is used to point at something such as a large chart or diagram when explaining something to people.
She tapped on the world map with her pointer.
N-COUNT
4.
The pointer on a measuring instrument is the long, thin piece of metal that points to the numbers.
= needle
N-COUNT

Βικιπαίδεια

Pointer (computer programming)

In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer. As an analogy, a page number in a book's index could be considered a pointer to the corresponding page; dereferencing such a pointer would be done by flipping to the page with the given page number and reading the text found on that page. The actual format and content of a pointer variable is dependent on the underlying computer architecture.

Using pointers significantly improves performance for repetitive operations, like traversing iterable data structures (e.g. strings, lookup tables, control tables and tree structures). In particular, it is often much cheaper in time and space to copy and dereference pointers than it is to copy and access the data to which the pointers point.

Pointers are also used to hold the addresses of entry points for called subroutines in procedural programming and for run-time linking to dynamic link libraries (DLLs). In object-oriented programming, pointers to functions are used for binding methods, often using virtual method tables.

A pointer is a simple, more concrete implementation of the more abstract reference data type. Several languages, especially low-level languages, support some type of pointer, although some have more restrictions on their use than others. While "pointer" has been used to refer to references in general, it more properly applies to data structures whose interface explicitly allows the pointer to be manipulated (arithmetically via pointer arithmetic) as a memory address, as opposed to a magic cookie or capability which does not allow such. Because pointers allow both protected and unprotected access to memory addresses, there are risks associated with using them, particularly in the latter case. Primitive pointers are often stored in a format similar to an integer; however, attempting to dereference or "look up" such a pointer whose value is not a valid memory address could cause a program to crash (or contain invalid data). To alleviate this potential problem, as a matter of type safety, pointers are considered a separate type parameterized by the type of data they point to, even if the underlying representation is an integer. Other measures may also be taken (such as validation & bounds checking), to verify that the pointer variable contains a value that is both a valid memory address and within the numerical range that the processor is capable of addressing.